home *** CD-ROM | disk | FTP | other *** search
/ Exame Informatica 139 / Exame Informatica 139.iso / Revista / Flash / Uniform Server / diskw / usr / local / php / php.ini < prev    next >
Encoding:
INI File  |  2005-10-14  |  41.0 KB  |  1,191 lines

  1. [PHP]
  2.  
  3. ;;;;;;;;;;;
  4. ; WARNING ;
  5. ;;;;;;;;;;;
  6. ; This is the default settings file for new PHP installations.
  7. ; By default, PHP installs itself with a configuration suitable for
  8. ; development purposes, and *NOT* for production purposes.
  9. ; For several security-oriented considerations that should be taken
  10. ; before going online with your site, please consult php.ini-recommended
  11. ; and http://php.net/manual/en/security.php.
  12.  
  13.  
  14. ;;;;;;;;;;;;;;;;;;;
  15. ; About php.ini   ;
  16. ;;;;;;;;;;;;;;;;;;;
  17. ; This file controls many aspects of PHP's behavior.  In order for PHP to
  18. ; read it, it must be named 'php.ini'.  PHP looks for it in the current
  19. ; working directory, in the path designated by the environment variable
  20. ; PHPRC, and in the path that was defined in compile time (in that order).
  21. ; Under Windows, the compile-time path is the Windows directory.  The
  22. ; path in which the php.ini file is looked for can be overridden using
  23. ; the -c argument in command line mode.
  24. ;
  25. ; The syntax of the file is extremely simple.  Whitespace and Lines
  26. ; beginning with a semicolon are silently ignored (as you probably guessed).
  27. ; Section headers (e.g. [Foo]) are also silently ignored, even though
  28. ; they might mean something in the future.
  29. ;
  30. ; Directives are specified using the following syntax:
  31. ; directive = value
  32. ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
  33. ;
  34. ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
  35. ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
  36. ; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo").
  37. ;
  38. ; Expressions in the INI file are limited to bitwise operators and parentheses:
  39. ; |        bitwise OR
  40. ; &        bitwise AND
  41. ; ~        bitwise NOT
  42. ; !        boolean NOT
  43. ;
  44. ; Boolean flags can be turned on using the values 1, On, True or Yes.
  45. ; They can be turned off using the values 0, Off, False or No.
  46. ;
  47. ; An empty string can be denoted by simply not writing anything after the equal
  48. ; sign, or by using the None keyword:
  49. ;
  50. ;  foo =         ; sets foo to an empty string
  51. ;  foo = none    ; sets foo to an empty string
  52. ;  foo = "none"  ; sets foo to the string 'none'
  53. ;
  54. ; If you use constants in your value, and these constants belong to a
  55. ; dynamically loaded extension (either a PHP extension or a Zend extension),
  56. ; you may only use these constants *after* the line that loads the extension.
  57. ;
  58. ;
  59. ;;;;;;;;;;;;;;;;;;;
  60. ; About this file ;
  61. ;;;;;;;;;;;;;;;;;;;
  62. ; All the values in the php.ini-dist file correspond to the builtin
  63. ; defaults (that is, if no php.ini is used, or if you delete these lines,
  64. ; the builtin defaults will be identical).
  65.  
  66.  
  67. ;;;;;;;;;;;;;;;;;;;;
  68. ; Language Options ;
  69. ;;;;;;;;;;;;;;;;;;;;
  70.  
  71. ; Enable the PHP scripting language engine under Apache.
  72. engine = On
  73.  
  74. ; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
  75. zend.ze1_compatibility_mode = Off
  76.  
  77. ; Allow the <? tag.  Otherwise, only <?php and <script> tags are recognized.
  78. ; NOTE: Using short tags should be avoided when developing applications or
  79. ; libraries that are meant for redistribution, or deployment on PHP
  80. ; servers which are not under your control, because short tags may not
  81. ; be supported on the target server. For portable, redistributable code,
  82. ; be sure not to use short tags.
  83. short_open_tag = On
  84.  
  85. ; Allow ASP-style <% %> tags.
  86. asp_tags = Off
  87.  
  88. ; The number of significant digits displayed in floating point numbers.
  89. precision    =  14
  90.  
  91. ; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
  92. y2k_compliance = On
  93.  
  94. ; Output buffering allows you to send header lines (including cookies) even
  95. ; after you send body content, at the price of slowing PHP's output layer a
  96. ; bit.  You can enable output buffering during runtime by calling the output
  97. ; buffering functions.  You can also enable output buffering for all files by
  98. ; setting this directive to On.  If you wish to limit the size of the buffer
  99. ; to a certain size - you can use a maximum number of bytes instead of 'On', as
  100. ; a value for this directive (e.g., output_buffering=4096).
  101. output_buffering = 4096
  102.  
  103. ; You can redirect all of the output of your scripts to a function.  For
  104. ; example, if you set output_handler to "mb_output_handler", character
  105. ; encoding will be transparently converted to the specified encoding.
  106. ; Setting any output handler automatically turns on output buffering.
  107. ; Note: People who wrote portable scripts should not depend on this ini
  108. ;       directive. Instead, explicitly set the output handler using ob_start().
  109. ;       Using this ini directive may cause problems unless you know what script
  110. ;       is doing.
  111. ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
  112. ;       and you cannot use both "ob_gzhandler" and "zlib.output_compression".
  113. ;output_handler =
  114.  
  115. ; Transparent output compression using the zlib library
  116. ; Valid values for this option are 'off', 'on', or a specific buffer size
  117. ; to be used for compression (default is 4KB)
  118. ; Note: Resulting chunk size may vary due to nature of compression. PHP
  119. ;       outputs chunks that are few handreds bytes each as a result of compression.
  120. ;       If you want larger chunk size for better performence, enable output_buffering
  121. ;       also.
  122. ; Note: output_handler must be empty if this is set 'On' !!!!
  123. ;       Instead you must use zlib.output_handler.
  124. ;zlib.output_compression = On
  125.  
  126. ; You cannot specify additional output handlers if zlib.output_compression
  127. ; is activated here. This setting does the same as output_handler but in
  128. ; a different order.
  129. ;zlib.output_handler =
  130.  
  131. ; Implicit flush tells PHP to tell the output layer to flush itself
  132. ; automatically after every output block.  This is equivalent to calling the
  133. ; PHP function flush() after each and every call to print() or echo() and each
  134. ; and every HTML block.  Turning this option on has serious performance
  135. ; implications and is generally recommended for debugging purposes only.
  136. implicit_flush = Off
  137.  
  138. ; The unserialize callback function will called (with the undefind class'
  139. ; name as parameter), if the unserializer finds an undefined class
  140. ; which should be instanciated.
  141. ; A warning appears if the specified function is not defined, or if the
  142. ; function doesn't include/implement the missing class.
  143. ; So only set this entry, if you really want to implement such a
  144. ; callback-function.
  145. unserialize_callback_func=
  146.  
  147. ; When floats & doubles are serialized store serialize_precision significant
  148. ; digits after the floating point. The default value ensures that when floats
  149. ; are decoded with unserialize, the data will remain the same.
  150. serialize_precision = 100
  151.  
  152. ; Whether to enable the ability to force arguments to be passed by reference
  153. ; at function call time.  This method is deprecated and is likely to be
  154. ; unsupported in future versions of PHP/Zend.  The encouraged method of
  155. ; specifying which arguments should be passed by reference is in the function
  156. ; declaration.  You're encouraged to try and turn this option Off and make
  157. ; sure your scripts work properly with it in order to ensure they will work
  158. ; with future versions of the language (you will receive a warning each time
  159. ; you use this feature, and the argument will be passed by value instead of by
  160. ; reference).
  161. allow_call_time_pass_reference = On
  162.  
  163. ;
  164. ; Safe Mode
  165. ;
  166. safe_mode = Off
  167.  
  168. ; By default, Safe Mode does a UID compare check when
  169. ; opening files. If you want to relax this to a GID compare,
  170. ; then turn on safe_mode_gid.
  171. safe_mode_gid = Off
  172.  
  173. ; When safe_mode is on, UID/GID checks are bypassed when
  174. ; including files from this directory and its subdirectories.
  175. ; (directory must also be in include_path or full path must
  176. ; be used when including)
  177. ;safe_mode_include_dir =        ".;\usr\local\PHP\includes;\usr\local\PHP\pear"
  178. safe_mode_include_dir =        ".;/usr/local/PHP/includes;/usr/local/PHP/pear"
  179.  
  180. ; When safe_mode is on, only executables located in the safe_mode_exec_dir
  181. ; will be allowed to be executed via the exec family of functions.
  182. safe_mode_exec_dir =
  183.  
  184. ; Setting certain environment variables may be a potential security breach.
  185. ; This directive contains a comma-delimited list of prefixes.  In Safe Mode,
  186. ; the user may only alter environment variables whose names begin with the
  187. ; prefixes supplied here.  By default, users will only be able to set
  188. ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
  189. ;
  190. ; Note:  If this directive is empty, PHP will let the user modify ANY
  191. ; environment variable!
  192. safe_mode_allowed_env_vars = PHP_
  193.  
  194. ; This directive contains a comma-delimited list of environment variables that
  195. ; the end user won't be able to change using putenv().  These variables will be
  196. ; protected even if safe_mode_allowed_env_vars is set to allow to change them.
  197. safe_mode_protected_env_vars = LD_LIBRARY_PATH
  198.  
  199. ; open_basedir, if set, limits all file operations to the defined directory
  200. ; and below.  This directive makes most sense if used in a per-directory
  201. ; or per-virtualhost web server configuration file. This directive is
  202. ; *NOT* affected by whether Safe Mode is turned On or Off.
  203. ;open_basedir =
  204.  
  205. ; This directive allows you to disable certain functions for security reasons.
  206. ; It receives a comma-delimited list of function names. This directive is
  207. ; *NOT* affected by whether Safe Mode is turned On or Off.
  208. disable_functions =
  209.  
  210. ; This directive allows you to disable certain classes for security reasons.
  211. ; It receives a comma-delimited list of class names. This directive is
  212. ; *NOT* affected by whether Safe Mode is turned On or Off.
  213. disable_classes =
  214.  
  215. ; Colors for Syntax Highlighting mode.  Anything that's acceptable in
  216. ; <font color="??????"> would work.
  217. ;highlight.string  = #DD0000
  218. ;highlight.comment = #FF9900
  219. ;highlight.keyword = #007700
  220. ;highlight.bg      = #FFFFFF
  221. ;highlight.default = #0000BB
  222. ;highlight.html    = #000000
  223.  
  224.  
  225. ; Misc
  226. ;
  227. ; Decides whether PHP may expose the fact that it is installed on the server
  228. ; (e.g. by adding its signature to the Web server header).  It is no security
  229. ; threat in any way, but it makes it possible to determine whether you use PHP
  230. ; on your server or not.
  231. expose_php = On
  232.  
  233. ;;;;;;;;;;;;;;;;;;;
  234. ; Resource Limits ;
  235. ;;;;;;;;;;;;;;;;;;;
  236.  
  237. max_execution_time = 30
  238. ; Maximum execution time of each script, in seconds
  239. max_input_time = 60        
  240. ; Maximum amount of time each script may spend parsing request data
  241. memory_limit = 8M
  242. ; Maximum amount of memory a script may consume (8MB)
  243.  
  244. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  245. ; Error handling and logging ;
  246. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  247.  
  248. ; error_reporting is a bit-field.  Or each number up to get desired error
  249. ; reporting level
  250. ; E_ALL             - All errors and warnings
  251. ; E_ERROR           - fatal run-time errors
  252. ; E_WARNING         - run-time warnings (non-fatal errors)
  253. ; E_PARSE           - compile-time parse errors
  254. ; E_NOTICE          - run-time notices (these are warnings which often result
  255. ;                     from a bug in your code, but it's possible that it was
  256. ;                     intentional (e.g., using an uninitialized variable and
  257. ;                     relying on the fact it's automatically initialized to an
  258. ;                     empty string)
  259. ; E_STRICT                        - run-time notices, enable to have PHP suggest changes
  260. ;                     to your code which will ensure the best interoperability
  261. ;                     and forward compatability of your code
  262. ; E_CORE_ERROR      - fatal errors that occur during PHP's initial startup
  263. ; E_CORE_WARNING    - warnings (non-fatal errors) that occur during PHP's
  264. ;                     initial startup
  265. ; E_COMPILE_ERROR   - fatal compile-time errors
  266. ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
  267. ; E_USER_ERROR      - user-generated error message
  268. ; E_USER_WARNING    - user-generated warning message
  269. ; E_USER_NOTICE     - user-generated notice message
  270. ;
  271. ; Examples:
  272. ;
  273. ;   - Show all errors, except for notices and coding standards warnings
  274. ;
  275. ;error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
  276. ;
  277. ;   - Show all errors, except for notices
  278. ;
  279. ;error_reporting = E_ALL & ~E_NOTICE
  280. ;
  281. ;   - Show only errors
  282. ;
  283. ;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR
  284. ;
  285. ;   - Show all errors except for notices and coding standards warnings
  286. ;
  287. error_reporting  =  E_ALL & ~E_NOTICE & ~E_STRICT
  288.  
  289. ; Print out errors (as a part of the output).  For production web sites,
  290. ; you're strongly encouraged to turn this feature off, and use error logging
  291. ; instead (see below).  Keeping display_errors enabled on a production web site
  292. ; may reveal security information to end users, such as file paths on your Web
  293. ; server, your database schema or other information.
  294. display_errors = On
  295.  
  296. ; Even when display_errors is on, errors that occur during PHP's startup
  297. ; sequence are not displayed.  It's strongly recommended to keep
  298. ; display_startup_errors off, except for when debugging.
  299. display_startup_errors = Off
  300.  
  301. ; Log errors into a log file (server-specific log, stderr, or error_log (below))
  302. ; As stated above, you're strongly advised to use error logging in place of
  303. ; error displaying on production web sites.
  304. log_errors = On
  305.  
  306. ; Set maximum length of log_errors. In error_log information about the source is
  307. ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
  308. log_errors_max_len = 1024
  309.  
  310. ; Do not log repeated messages. Repeated errors must occur in same file on same
  311. ; line until ignore_repeated_source is set true.
  312. ignore_repeated_errors = Off
  313.  
  314. ; Ignore source of message when ignoring repeated messages. When this setting
  315. ; is On you will not log errors with repeated messages from different files or
  316. ; sourcelines.
  317. ignore_repeated_source = Off
  318.  
  319. ; If this parameter is set to Off, then memory leaks will not be shown (on
  320. ; stdout or in the log). This has only effect in a debug compile, and if
  321. ; error reporting includes E_WARNING in the allowed list
  322. report_memleaks = On
  323.  
  324. ; Store the last error/warning message in $php_errormsg (boolean).
  325. track_errors = On
  326.  
  327. ; Disable the inclusion of HTML tags in error messages.
  328. ; Note: Never use this feature for production boxes.
  329. ;html_errors = Off
  330.  
  331. ; If html_errors is set On PHP produces clickable error messages that direct
  332. ; to a page describing the error or function causing the error in detail.
  333. ; You can download a copy of the PHP manual from http://www.php.net/docs.php
  334. ; and change docref_root to the base URL of your local copy including the
  335. ; leading '/'. You must also specify the file extension being used including
  336. ; the dot.
  337. ; Note: Never use this feature for production boxes.
  338. ;docref_root = "/phpmanual/"
  339. ;docref_ext = .html
  340.  
  341. ; String to output before an error message.
  342. ;error_prepend_string = "<font color=ff0000>"
  343.  
  344. ; String to output after an error message.
  345. ;error_append_string = "</font>"
  346.  
  347. ; Log errors to specified file.
  348. error_log = logs/logs.log
  349.  
  350. ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
  351. ;error_log = syslog
  352.  
  353.  
  354. ;;;;;;;;;;;;;;;;;
  355. ; Data Handling ;
  356. ;;;;;;;;;;;;;;;;;
  357. ;
  358. ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
  359.  
  360. ; The separator used in PHP generated URLs to separate arguments.
  361. ; Default is "&".
  362. ;arg_separator.output = "&"
  363.  
  364. ; List of separator(s) used by PHP to parse input URLs into variables.
  365. ; Default is "&".
  366. ; NOTE: Every character in this directive is considered as separator!
  367. ;arg_separator.input = ";&"
  368.  
  369. ; This directive describes the order in which PHP registers GET, POST, Cookie,
  370. ; Environment and Built-in variables (G, P, C, E & S respectively, often
  371. ; referred to as EGPCS or GPC).  Registration is done from left to right, newer
  372. ; values override older values.
  373. variables_order = "EGPCS"
  374.  
  375. ; Whether or not to register the EGPCS variables as global variables.  You may
  376. ; want to turn this off if you don't want to clutter your scripts' global scope
  377. ; with user data.  This makes most sense when coupled with track_vars - in which
  378. ; case you can access all of the GPC variables through the $HTTP_*_VARS[],
  379. ; variables.
  380. ;
  381. ; You should do your best to write your scripts so that they do not require
  382. ; register_globals to be on;  Using form variables as globals can easily lead
  383. ; to possible security problems, if the code is not very well thought of.
  384. register_globals = Off
  385.  
  386. ; Whether or not to register the old-style input arrays, HTTP_GET_VARS
  387. ; and friends.  If you're not using them, it's recommended to turn them off,
  388. ; for performance reasons.
  389. register_long_arrays = On
  390.  
  391. ; This directive tells PHP whether to declare the argv&argc variables (that
  392. ; would contain the GET information).  If you don't use these variables, you
  393. ; should turn it off for increased performance.
  394. register_argc_argv = On
  395.  
  396. ; Maximum size of POST data that PHP will accept.
  397. post_max_size = 10M
  398.  
  399. ;;;;;;;;;;;;;;;
  400. ; Magic quotes;
  401. ;;;;;;;;;;;;;;;
  402.  
  403. ; Magic quotes for incoming GET/POST/Cookie data.
  404. magic_quotes_gpc = On
  405.  
  406. ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
  407. magic_quotes_runtime = Off
  408.  
  409. ; Use Sybase-style magic quotes (escape ' with '' instead of \').
  410. magic_quotes_sybase = Off
  411.  
  412. ; Automatically add files before or after any PHP document.
  413. auto_prepend_file =
  414. auto_append_file =
  415.  
  416. ; As of 4.0b4, PHP always outputs a character encoding by default in
  417. ; the Content-type: header.  To disable sending of the charset, simply
  418. ; set it to be empty.
  419. ;
  420. ; PHP's built-in default is text/html
  421. default_mimetype = "text/html"
  422. ;default_charset = "iso-8859-1"
  423.  
  424. ; Always populate the $HTTP_RAW_POST_DATA variable.
  425. ;always_populate_raw_post_data = On
  426.  
  427.  
  428. ;;;;;;;;;;;;;;;;;;;;;;;;;
  429. ; Paths and Directories ;
  430. ;;;;;;;;;;;;;;;;;;;;;;;;;
  431.  
  432. ; UNIX: "/path1:/path2"
  433. ;include_path = ".:/php/includes"
  434. ;
  435. ; Windows: "\path1;\path2"
  436. ;include_path = ".;\usr\local\PHP\includes;\usr\local\PHP\pear"
  437. include_path = ".;/usr/local/PHP/includes;/usr/local/PHP/pear"
  438.  
  439. ; The root of the PHP pages, used only if nonempty.
  440. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
  441. ; if you are running php as a CGI under any web server (other than IIS)
  442. ; see documentation for security issues.  The alternate is to use the
  443. ; cgi.force_redirect configuration below
  444. doc_root =
  445.  
  446. ; The directory under which PHP opens the script using /~username used only
  447. ; if nonempty.
  448. user_dir = "/www"
  449.  
  450. ; Directory in which the loadable extensions (modules) reside.
  451. extension_dir = "/usr/local/PHP/extensions"
  452.  
  453. ; Whether or not to enable the dl() function.  The dl() function does NOT work
  454. ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
  455. ; disabled on them.
  456. enable_dl = On
  457.  
  458. ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
  459. ; most web servers.  Left undefined, PHP turns this on by default.  You can
  460. ; turn it off here AT YOUR OWN RISK
  461. ; **You CAN safely turn this off for IIS, in fact, you MUST.**
  462. ; cgi.force_redirect = 1
  463.  
  464. ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
  465. ; every request.
  466. ; cgi.nph = 1
  467.  
  468. ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
  469. ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
  470. ; will look for to know it is OK to continue execution.  Setting this variable MAY
  471. ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
  472. ; cgi.redirect_status_env = ;
  473.  
  474. ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
  475. ; security tokens of the calling client.  This allows IIS to define the
  476. ; security context that the request runs under.  mod_fastcgi under Apache
  477. ; does not currently support this feature (03/17/2002)
  478. ; Set to 1 if running under IIS.  Default is zero.
  479. ; fastcgi.impersonate = 1;
  480.  
  481. ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
  482. ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
  483. ; is supported by Apache. When this option is set to 1 PHP will send
  484. ; RFC2616 compliant header.
  485. ; Default is zero.
  486. ;cgi.rfc2616_headers = 0
  487.  
  488.  
  489. ;;;;;;;;;;;;;;;;
  490. ; File Uploads ;
  491. ;;;;;;;;;;;;;;;;
  492.  
  493. ; Whether to allow HTTP file uploads.
  494. file_uploads = On
  495.  
  496. ; Temporary directory for HTTP uploaded files (will use system default if not
  497. ; specified).
  498. upload_tmp_dir = /tmp
  499.  
  500. ; Maximum allowed size for uploaded files.
  501. upload_max_filesize = 10M
  502.  
  503.  
  504. ;;;;;;;;;;;;;;;;;;
  505. ; Fopen wrappers ;
  506. ;;;;;;;;;;;;;;;;;;
  507.  
  508. ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
  509. allow_url_fopen = On
  510.  
  511. ; Define the anonymous ftp password (your email address)
  512. ;from="john@doe.com"
  513.  
  514. ; Define the user agent for php to send
  515. ;user_agent="PHP"
  516.  
  517. ; Default timeout for socket based streams (seconds)
  518. default_socket_timeout = 60
  519.  
  520. ; If your scripts have to deal with files from Macintosh systems,
  521. ; or you are running on a Mac and need to deal with files from
  522. ; unix or win32 systems, setting this flag will cause PHP to
  523. ; automatically detect the EOL character in those files so that
  524. ; fgets() and file() will work regardless of the source of the file.
  525. ; auto_detect_line_endings = Off
  526.  
  527.  
  528. ;;;;;;;;;;;;;;;;;;;;;;
  529. ; Dynamic Extensions ;
  530. ;;;;;;;;;;;;;;;;;;;;;;
  531. ;
  532. ; If you wish to have an extension loaded automatically, use the following
  533. ; syntax:
  534. ;
  535. ;   extension=modulename.extension
  536. ;
  537. ; For example, on Windows:
  538. ;
  539. ;   extension=msql.dll
  540. ;
  541. ; ... or under UNIX:
  542. ;
  543. ;   extension=msql.so
  544. ;
  545. ; Note that it should be the name of the module only; no directory information
  546. ; needs to go here.  Specify the location of the extension with the
  547. ; extension_dir directive above.
  548.  
  549.  
  550. ;Windows Extensions
  551. ;Note that ODBC support is built in, so no dll is needed for it.
  552. ;
  553.  
  554. ;extension=php_bz2.dll
  555. ;extension=php_cpdf.dll
  556. ;extension=php_curl.dll
  557. ;extension=php_dba.dll
  558. ;extension=php_dbase.dll
  559. ;extension=php_dbx.dll
  560. ;extension=php_exif.dll
  561. ;extension=php_fdf.dll
  562. ;extension=php_filepro.dll
  563. extension=php_gd2.dll
  564. ;extension=php_gettext.dll
  565. ;extension=php_iconv.dll
  566. ;extension=php_ifx.dll
  567. ;extension=php_iisfunc.dll
  568. ;extension=php_imap.dll
  569. ;extension=php_interbase.dll
  570. ;extension=php_java.dll
  571. ;extension=php_ldap.dll
  572. extension=php_mbstring.dll
  573. ;extension=php_mcrypt.dll
  574. ;extension=php_mhash.dll
  575. ;extension=php_mime_magic.dll
  576. ;extension=php_ming.dll
  577. ;extension=php_mssql.dll
  578. ;extension=php_msql.dll
  579. extension=php_mysql.dll
  580. ;extension=php_oci8.dll
  581. ;extension=php_openssl.dll
  582. ;extension=php_oracle.dll
  583. ;extension=php_pdf.dll
  584. ;extension=php_pgsql.dll
  585. ;extension=php_shmop.dll
  586. ;extension=php_snmp.dll
  587. extension=php_sockets.dll
  588. ;extension=php_sybase_ct.dll
  589. ;extension=php_tidy.dll
  590. ;extension=php_w32api.dll
  591. ;extension=php_xmlrpc.dll
  592. ;extension=php_xsl.dll
  593. ;extension=php_yaz.dll
  594. ;extension=php_zip.dll
  595.  
  596.  
  597. ;;;;;;;;;;;;;;;;;;;
  598. ; Module Settings ;
  599. ;;;;;;;;;;;;;;;;;;;
  600.  
  601. [Syslog]
  602. ; Whether or not to define the various syslog variables (e.g. $LOG_PID,
  603. ; $LOG_CRON, etc.).  Turning it off is a good idea performance-wise.  In
  604. ; runtime, you can define these variables by calling define_syslog_variables().
  605. define_syslog_variables  = Off
  606.  
  607. [mail function]
  608. ; For Win32 only.
  609. SMTP = localhost
  610. smtp_port = 25
  611.  
  612. ; For Win32 only.
  613. sendmail_from = me@localhost.com
  614.  
  615. ; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
  616. ;sendmail_path = "W:\plugins\SendMail\sendmail.exe -t"
  617.  
  618. ; Force the addition of the specified parameters to be passed as extra parameters
  619. ; to the sendmail binary. These parameters will always replace the value of
  620. ; the 5th parameter to mail(), even in safe mode.
  621. ;mail.force_extra_paramaters =
  622.  
  623. [SQL]
  624. sql.safe_mode = Off
  625.  
  626. [ODBC]
  627. ;odbc.default_db    =  Not yet implemented
  628. ;odbc.default_user  =  Not yet implemented
  629. ;odbc.default_pw    =  Not yet implemented
  630.  
  631. ; Allow or prevent persistent links.
  632. odbc.allow_persistent = On
  633.  
  634. ; Check that a connection is still valid before reuse.
  635. odbc.check_persistent = On
  636.  
  637. ; Maximum number of persistent links.  -1 means no limit.
  638. odbc.max_persistent = -1
  639.  
  640. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  641. odbc.max_links = -1
  642.  
  643. ; Handling of LONG fields.  Returns number of bytes to variables.  0 means
  644. ; passthru.
  645. odbc.defaultlrl = 4096
  646.  
  647. ; Handling of binary data.  0 means passthru, 1 return as is, 2 convert to char.
  648. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
  649. ; of uodbc.defaultlrl and uodbc.defaultbinmode
  650. odbc.defaultbinmode = 1
  651.  
  652. [MySQL]
  653. ; Allow or prevent persistent links.
  654. mysql.allow_persistent = On
  655.  
  656. ; Maximum number of persistent links.  -1 means no limit.
  657. mysql.max_persistent = -1
  658.  
  659. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  660. mysql.max_links = -1
  661.  
  662. ; Default port number for mysql_connect().  If unset, mysql_connect() will use
  663. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  664. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  665. ; at MYSQL_PORT.
  666. mysql.default_port =
  667.  
  668. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  669. ; MySQL defaults.
  670. mysql.default_socket =
  671.  
  672. ; Default host for mysql_connect() (doesn't apply in safe mode).
  673. mysql.default_host =
  674.  
  675. ; Default user for mysql_connect() (doesn't apply in safe mode).
  676. mysql.default_user =
  677.  
  678. ; Default password for mysql_connect() (doesn't apply in safe mode).
  679. ; Note that this is generally a *bad* idea to store passwords in this file.
  680. ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
  681. ; and reveal this password!  And of course, any users with read access to this
  682. ; file will be able to reveal the password as well.
  683. mysql.default_password =
  684.  
  685. ; Maximum time (in secondes) for connect timeout. -1 means no limimt
  686. mysql.connect_timeout = 60
  687.  
  688. ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
  689. ; SQL-Erros will be displayed.
  690. mysql.trace_mode = Off
  691.  
  692. [MySQLI]
  693.  
  694. ; Maximum number of links.  -1 means no limit.
  695. mysqli.max_links = -1
  696.  
  697. ; Default port number for mysqli_connect().  If unset, mysqli_connect() will use
  698. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  699. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  700. ; at MYSQL_PORT.
  701. mysqli.default_port = 3306
  702.  
  703. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  704. ; MySQL defaults.
  705. mysqli.default_socket =
  706.  
  707. ; Default host for mysql_connect() (doesn't apply in safe mode).
  708. mysqli.default_host =
  709.  
  710. ; Default user for mysql_connect() (doesn't apply in safe mode).
  711. mysqli.default_user =
  712.  
  713. ; Default password for mysqli_connect() (doesn't apply in safe mode).
  714. ; Note that this is generally a *bad* idea to store passwords in this file.
  715. ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_password")
  716. ; and reveal this password!  And of course, any users with read access to this
  717. ; file will be able to reveal the password as well.
  718. mysqli.default_password =
  719.  
  720. ; Allow or prevent reconnect
  721. mysqli.reconnect = Off
  722.  
  723. [mSQL]
  724. ; Allow or prevent persistent links.
  725. msql.allow_persistent = On
  726.  
  727. ; Maximum number of persistent links.  -1 means no limit.
  728. msql.max_persistent = -1
  729.  
  730. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  731. msql.max_links = -1
  732.  
  733. [PostgresSQL]
  734. ; Allow or prevent persistent links.
  735. pgsql.allow_persistent = On
  736.  
  737. ; Detect broken persistent links always with pg_pconnect().
  738. ; Auto reset feature requires a little overheads.
  739. pgsql.auto_reset_persistent = Off
  740.  
  741. ; Maximum number of persistent links.  -1 means no limit.
  742. pgsql.max_persistent = -1
  743.  
  744. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  745. pgsql.max_links = -1
  746.  
  747. ; Ignore PostgreSQL backends Notice message or not.
  748. ; Notice message logging require a little overheads.
  749. pgsql.ignore_notice = 0
  750.  
  751. ; Log PostgreSQL backends Noitce message or not.
  752. ; Unless pgsql.ignore_notice=0, module cannot log notice message.
  753. pgsql.log_notice = 0
  754.  
  755. [Sybase]
  756. ; Allow or prevent persistent links.
  757. sybase.allow_persistent = On
  758.  
  759. ; Maximum number of persistent links.  -1 means no limit.
  760. sybase.max_persistent = -1
  761.  
  762. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  763. sybase.max_links = -1
  764.  
  765. ;sybase.interface_file = "/usr/sybase/interfaces"
  766.  
  767. ; Minimum error severity to display.
  768. sybase.min_error_severity = 10
  769.  
  770. ; Minimum message severity to display.
  771. sybase.min_message_severity = 10
  772.  
  773. ; Compatability mode with old versions of PHP 3.0.
  774. ; If on, this will cause PHP to automatically assign types to results according
  775. ; to their Sybase type, instead of treating them all as strings.  This
  776. ; compatability mode will probably not stay around forever, so try applying
  777. ; whatever necessary changes to your code, and turn it off.
  778. sybase.compatability_mode = Off
  779.  
  780. [Sybase-CT]
  781. ; Allow or prevent persistent links.
  782. sybct.allow_persistent = On
  783.  
  784. ; Maximum number of persistent links.  -1 means no limit.
  785. sybct.max_persistent = -1
  786.  
  787. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  788. sybct.max_links = -1
  789.  
  790. ; Minimum server message severity to display.
  791. sybct.min_server_severity = 10
  792.  
  793. ; Minimum client message severity to display.
  794. sybct.min_client_severity = 10
  795.  
  796. [dbx]
  797. ; returned column names can be converted for compatibility reasons
  798. ; possible values for dbx.colnames_case are
  799. ; "unchanged" (default, if not set)
  800. ; "lowercase"
  801. ; "uppercase"
  802. ; the recommended default is either upper- or lowercase, but
  803. ; unchanged is currently set for backwards compatibility
  804. dbx.colnames_case = "lowercase"
  805.  
  806. [bcmath]
  807. ; Number of decimal digits for all bcmath functions.
  808. bcmath.scale = 0
  809.  
  810. [browscap]
  811. ;browscap = extra/browscap.ini
  812.  
  813. [Informix]
  814. ; Default host for ifx_connect() (doesn't apply in safe mode).
  815. ifx.default_host =
  816.  
  817. ; Default user for ifx_connect() (doesn't apply in safe mode).
  818. ifx.default_user =
  819.  
  820. ; Default password for ifx_connect() (doesn't apply in safe mode).
  821. ifx.default_password =
  822.  
  823. ; Allow or prevent persistent links.
  824. ifx.allow_persistent = On
  825.  
  826. ; Maximum number of persistent links.  -1 means no limit.
  827. ifx.max_persistent = -1
  828.  
  829. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  830. ifx.max_links = -1
  831.  
  832. ; If on, select statements return the contents of a text blob instead of its id.
  833. ifx.textasvarchar = 0
  834.  
  835. ; If on, select statements return the contents of a byte blob instead of its id.
  836. ifx.byteasvarchar = 0
  837.  
  838. ; Trailing blanks are stripped from fixed-length char columns.  May help the
  839. ; life of Informix SE users.
  840. ifx.charasvarchar = 0
  841.  
  842. ; If on, the contents of text and byte blobs are dumped to a file instead of
  843. ; keeping them in memory.
  844. ifx.blobinfile = 0
  845.  
  846. ; NULL's are returned as empty strings, unless this is set to 1.  In that case,
  847. ; NULL's are returned as string 'NULL'.
  848. ifx.nullformat = 0
  849.  
  850. [Session]
  851. ; Handler used to store/retrieve data.
  852. session.save_handler = files
  853.  
  854. ; Argument passed to save_handler.  In the case of files, this is the path
  855. ; where data files are stored. Note: Windows users have to change this
  856. ; variable in order to use PHP's session functions.
  857. ;
  858. ; As of PHP 4.0.1, you can define the path as:
  859. ;
  860. ;     session.save_path = "N;/path"
  861. ;
  862. ; where N is an integer.  Instead of storing all the session files in
  863. ; /path, what this will do is use subdirectories N-levels deep, and
  864. ; store the session data in those directories.  This is useful if you
  865. ; or your OS have problems with lots of files in one directory, and is
  866. ; a more efficient layout for servers that handle lots of sessions.
  867. ;
  868. ; NOTE 1: PHP will not create this directory structure automatically.
  869. ;         You can use the script in the ext/session dir for that purpose.
  870. ; NOTE 2: See the section on garbage collection below if you choose to
  871. ;         use subdirectories for session storage
  872. ;
  873. ; The file storage module creates files using mode 600 by default.
  874. ; You can change that by using
  875. ;
  876. ;     session.save_path = "N;MODE;/path"
  877. ;
  878. ; where MODE is the octal representation of the mode. Note that this
  879. ; does not overwrite the process's umask.
  880. session.save_path = "/tmp"
  881.  
  882. ; Whether to use cookies.
  883. session.use_cookies = 1
  884.  
  885. ; This option enables administrators to make their users invulnerable to
  886. ; attacks which involve passing session ids in URLs; defaults to 0.
  887. ; session.use_only_cookies = 1
  888.  
  889. ; Name of the session (used as cookie name).
  890. session.name = PHPSESSID
  891.  
  892. ; Initialize session on request startup.
  893. session.auto_start = 0
  894.  
  895. ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
  896. session.cookie_lifetime = 0
  897.  
  898. ; The path for which the cookie is valid.
  899. session.cookie_path = /
  900.  
  901. ; The domain for which the cookie is valid.
  902. session.cookie_domain =
  903.  
  904. ; Handler used to serialize data.  php is the standard serializer of PHP.
  905. session.serialize_handler = php
  906.  
  907. ; Define the probability that the 'garbage collection' process is started
  908. ; on every session initialization.
  909. ; The probability is calculated by using gc_probability/gc_divisor,
  910. ; e.g. 1/100 means there is a 1% chance that the GC process starts
  911. ; on each request.
  912.  
  913. session.gc_probability = 1
  914. session.gc_divisor     = 1000
  915.  
  916. ; After this number of seconds, stored data will be seen as 'garbage' and
  917. ; cleaned up by the garbage collection process.
  918. session.gc_maxlifetime = 1440
  919.  
  920. ; PHP 4.2 and less have an undocumented feature/bug that allows you to
  921. ; to initialize a session variable in the global scope, albeit register_globals
  922. ; is disabled.  PHP 4.3 and later will warn you, if this feature is used.
  923. ; You can disable the feature and the warning seperately. At this time,
  924. ; the warning is only displayed, if bug_compat_42 is enabled.
  925.  
  926. session.bug_compat_42 = 0
  927. session.bug_compat_warn = 1
  928.  
  929. ; Check HTTP Referer to invalidate externally stored URLs containing ids.
  930. ; HTTP_REFERER has to contain this substring for the session to be
  931. ; considered as valid.
  932. session.referer_check =
  933.  
  934. ; How many bytes to read from the file.
  935. session.entropy_length = 0
  936.  
  937. ; Specified here to create the session id.
  938. session.entropy_file =
  939.  
  940. ;session.entropy_length = 16
  941.  
  942. ;session.entropy_file = /dev/urandom
  943.  
  944. ; Set to {nocache,private,public,} to determine HTTP caching aspects.
  945. ; or leave this empty to avoid sending anti-caching headers.
  946. session.cache_limiter = nocache
  947.  
  948. ; Document expires after n minutes.
  949. session.cache_expire = 180
  950.  
  951. ; trans sid support is disabled by default.
  952. ; Use of trans sid may risk your users security.
  953. ; Use this option with caution.
  954. ; - User may send URL contains active session ID
  955. ;   to other person via. email/irc/etc.
  956. ; - URL that contains active session ID may be stored
  957. ;   in publically accessible computer.
  958. ; - User may access your site with the same session ID
  959. ;   always using URL stored in browser's history or bookmarks.
  960. session.use_trans_sid = 0
  961.  
  962. ; Select a hash function
  963. ; 0: MD5   (128 bits)
  964. ; 1: SHA-1 (160 bits)
  965. session.hash_function = 0
  966.  
  967. ; Define how many bits are stored in each character when converting
  968. ; the binary hash data to something readable.
  969. ;
  970. ; 4 bits: 0-9, a-f
  971. ; 5 bits: 0-9, a-v
  972. ; 6 bits: 0-9, a-z, A-Z, "-", ","
  973. session.hash_bits_per_character = 5
  974.  
  975. ; The URL rewriter will look for URLs in a defined set of HTML tags.
  976. ; form/fieldset are special; if you include them here, the rewriter will
  977. ; add a hidden <input> field with the info which is otherwise appended
  978. ; to URLs.  If you want XHTML conformity, remove the form entry.
  979. ; Note that all valid entries require a "=", even if no value follows.
  980. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
  981.  
  982. [MSSQL]
  983. ; Allow or prevent persistent links.
  984. mssql.allow_persistent = On
  985.  
  986. ; Maximum number of persistent links.  -1 means no limit.
  987. mssql.max_persistent = -1
  988.  
  989. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  990. mssql.max_links = -1
  991.  
  992. ; Minimum error severity to display.
  993. mssql.min_error_severity = 10
  994.  
  995. ; Minimum message severity to display.
  996. mssql.min_message_severity = 10
  997.  
  998. ; Compatability mode with old versions of PHP 3.0.
  999. mssql.compatability_mode = Off
  1000.  
  1001. ; Connect timeout
  1002. ;mssql.connect_timeout = 5
  1003.  
  1004. ; Query timeout
  1005. ;mssql.timeout = 60
  1006.  
  1007. ; Valid range 0 - 2147483647.  Default = 4096.
  1008. ;mssql.textlimit = 4096
  1009.  
  1010. ; Valid range 0 - 2147483647.  Default = 4096.
  1011. ;mssql.textsize = 4096
  1012.  
  1013. ; Limits the number of records in each batch.  0 = all records in one batch.
  1014. ;mssql.batchsize = 0
  1015.  
  1016. ; Specify how datetime and datetim4 columns are returned
  1017. ; On => Returns data converted to SQL server settings
  1018. ; Off => Returns values as YYYY-MM-DD hh:mm:ss
  1019. ;mssql.datetimeconvert = On
  1020.  
  1021. ; Use NT authentication when connecting to the server
  1022. mssql.secure_connection = Off
  1023.  
  1024. ; Specify max number of processes. Default = 25
  1025. ;mssql.max_procs = 25
  1026.  
  1027. [Assertion]
  1028. ; Assert(expr); active by default.
  1029. ;assert.active = On
  1030.  
  1031. ; Issue a PHP warning for each failed assertion.
  1032. ;assert.warning = On
  1033.  
  1034. ; Don't bail out by default.
  1035. ;assert.bail = Off
  1036.  
  1037. ; User-function to be called if an assertion fails.
  1038. ;assert.callback = 0
  1039.  
  1040. ; Eval the expression with current error_reporting().  Set to true if you want
  1041. ; error_reporting(0) around the eval().
  1042. ;assert.quiet_eval = 0
  1043.  
  1044. [Ingres II]
  1045. ; Allow or prevent persistent links.
  1046. ingres.allow_persistent = On
  1047.  
  1048. ; Maximum number of persistent links.  -1 means no limit.
  1049. ingres.max_persistent = -1
  1050.  
  1051. ; Maximum number of links, including persistents.  -1 means no limit.
  1052. ingres.max_links = -1
  1053.  
  1054. ; Default database (format: [node_id::]dbname[/srv_class]).
  1055. ingres.default_database =
  1056.  
  1057. ; Default user.
  1058. ingres.default_user =
  1059.  
  1060. ; Default password.
  1061. ingres.default_password =
  1062.  
  1063. [Verisign Payflow Pro]
  1064. ; Default Payflow Pro server.
  1065. pfpro.defaulthost = "test-payflow.verisign.com"
  1066.  
  1067. ; Default port to connect to.
  1068. pfpro.defaultport = 443
  1069.  
  1070. ; Default timeout in seconds.
  1071. pfpro.defaulttimeout = 30
  1072.  
  1073. ; Default proxy IP address (if required).
  1074. ;pfpro.proxyaddress =
  1075.  
  1076. ; Default proxy port.
  1077. ;pfpro.proxyport =
  1078.  
  1079. ; Default proxy logon.
  1080. ;pfpro.proxylogon =
  1081.  
  1082. ; Default proxy password.
  1083. ;pfpro.proxypassword =
  1084.  
  1085. [Sockets]
  1086. ; Use the system read() function instead of the php_read() wrapper.
  1087. sockets.use_system_read = On
  1088.  
  1089. [com]
  1090. ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
  1091. ;com.typelib_file =
  1092. ; allow Distributed-COM calls
  1093. ;com.allow_dcom = true
  1094. ; autoregister constants of a components typlib on com_load()
  1095. ;com.autoregister_typelib = true
  1096. ; register constants casesensitive
  1097. ;com.autoregister_casesensitive = false
  1098. ; show warnings on duplicate constat registrations
  1099. ;com.autoregister_verbose = true
  1100.  
  1101. [mbstring]
  1102. ; language for internal character representation.
  1103. ;mbstring.language = Japanese
  1104.  
  1105. ; internal/script encoding.
  1106. ; Some encoding cannot work as internal encoding.
  1107. ; (e.g. SJIS, BIG5, ISO-2022-*)
  1108. ;mbstring.internal_encoding = EUC-JP
  1109.  
  1110. ; http input encoding.
  1111. ;mbstring.http_input = auto
  1112.  
  1113. ; http output encoding. mb_output_handler must be
  1114. ; registered as output buffer to function
  1115. ;mbstring.http_output = SJIS
  1116.  
  1117. ; enable automatic encoding translation accoding to
  1118. ; mbstring.internal_encoding setting. Input chars are
  1119. ; converted to internal encoding by setting this to On.
  1120. ; Note: Do _not_ use automatic encoding translation for
  1121. ;       portable libs/applications.
  1122. ;mbstring.encoding_translation = Off
  1123.  
  1124. ; automatic encoding detection order.
  1125. ; auto means
  1126. ;mbstring.detect_order = auto
  1127.  
  1128. ; substitute_character used when character cannot be converted
  1129. ; one from another
  1130. ;mbstring.substitute_character = none;
  1131.  
  1132. ; overload(replace) single byte functions by mbstring functions.
  1133. ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
  1134. ; etc. Possible values are 0,1,2,4 or combination of them.
  1135. ; For example, 7 for overload everything.
  1136. ; 0: No overload
  1137. ; 1: Overload mail() function
  1138. ; 2: Overload str*() functions
  1139. ; 4: Overload ereg*() functions
  1140. ;mbstring.func_overload = 0
  1141.  
  1142. [FrontBase]
  1143. ;fbsql.allow_persistent = On
  1144. ;fbsql.autocommit = On
  1145. ;fbsql.default_database =
  1146. ;fbsql.default_database_password =
  1147. ;fbsql.default_host =
  1148. ;fbsql.default_password =
  1149. ;fbsql.default_user = "_SYSTEM"
  1150. ;fbsql.generate_warnings = Off
  1151. ;fbsql.max_connections = 128
  1152. ;fbsql.max_links = 128
  1153. ;fbsql.max_persistent = -1
  1154. ;fbsql.max_results = 128
  1155. ;fbsql.batchSize = 1000
  1156.  
  1157. [exif]
  1158. ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
  1159. ; With mbstring support this will automatically be converted into the encoding
  1160. ; given by corresponding encode setting. When empty mbstring.internal_encoding
  1161. ; is used. For the decode settings you can distinguish between motorola and
  1162. ; intel byte order. A decode setting cannot be empty.
  1163. ;exif.encode_unicode = ISO-8859-15
  1164. ;exif.decode_unicode_motorola = UCS-2BE
  1165. ;exif.decode_unicode_intel    = UCS-2LE
  1166. ;exif.encode_jis =
  1167. ;exif.decode_jis_motorola = JIS
  1168. ;exif.decode_jis_intel    = JIS
  1169.  
  1170. [Tidy]
  1171. ; The path to a default tidy configuration file to use when using tidy
  1172. ;tidy.default_config = /usr/local/lib/php/default.tcfg
  1173.  
  1174. ; Should tidy clean and repair output automatically?
  1175. ; WARNING: Do not use this option if you are generating non-html content
  1176. ; such as dynamic images
  1177. tidy.clean_output = Off
  1178.  
  1179. [soap]
  1180. ; Enables or disables WSDL caching feature.
  1181. soap.wsdl_cache_enabled=1
  1182. ; Sets the directory name where SOAP extension will put cache files.
  1183. soap.wsdl_cache_dir="/tmp"
  1184. ; (time to live) Sets the number of second while cached file will be used
  1185. ; instead of original one.
  1186. soap.wsdl_cache_ttl=86400
  1187.  
  1188. ; Local Variables:
  1189. ; tab-width: 4
  1190. ; End:
  1191.